ARROW-6205: [C++] ARROW_DEPRECATED warning when including io/interfaces.h#5062
ARROW-6205: [C++] ARROW_DEPRECATED warning when including io/interfaces.h#5062harrism wants to merge 3 commits intoapache:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #5062 +/- ##
==========================================
+ Coverage 87.61% 89.21% +1.6%
==========================================
Files 1009 727 -282
Lines 144082 103189 -40893
Branches 1418 0 -1418
==========================================
- Hits 126232 92057 -34175
+ Misses 17488 11132 -6356
+ Partials 362 0 -362
Continue to review full report at Codecov.
|
|
@harrism It was merged actually, we're just using a dedicated merge script rather than Github's PR merge button. So false alert there :-) |
|
@harrism right, we don't use the GitHub UI to merge PRs, our merge tool creates atomic patches from each pull request and commits those to master, see I'm actually a bit surprised a project with many developers like RAPIDS is able to tolerate a "dirty" commit history (https://github.com/rapidsai/cudf/commits/branch-0.9). How do you expect to be able to git-bisect? |
|
I've git bisected myself and so have others without problems. log(N) is a very powerful tool. Thanks for accepting my patch. |
|
The number of commits is not an issue -- it's a question of having a mix of "good" (green CI build) and "bad" (failing CI build) in the commit history. In any case, that's a discussion for another time and place :) |
ARROW_DEPRECATED on using statements causes warnings when including interfaces.h from CUDA source files (.cu) compiled with nvcc.
This PR works around this issue the same way it is done for MSVC by changing a single preprocessor condition.
Fixes JIRA 6205